<<<<<<< HEAD ======= >>>>>>> mitchell_wake

Introduction

<<<<<<< HEAD

In recent years, the relationship between economic indicators and health outcomes has become a focal point of research, especially within the context of OECD countries. This study aims to explore two critical aspects: the correlation between Gross Net Income (GNI) per Capita and key health indicators, and the impact of health expenditure on health outcomes. Our research is guided by two primary questions. Firstly, we investigate the relationship between GNI Per Capita and the infant mortality rate among children under 5 years. Secondly, we explore the correlation between GNI Per Capita and life expectancy at birth. The significance of this study lies in its potential to uncover the intricacies of how economic prosperity, as measured by GNI per capita, influences essential health metrics like infant mortality and life expectancy.

Moreover, the study extends to a detailed examination of health expenditure as a percentage of GDP and its relation to life expectancy and infant mortality rates. We delve into various healthcare systems, ranging from universal to insurance-based and mixed systems, providing a broader perspective on healthcare efficiency across different economic and demographic backgrounds. This comparative analysis is crucial for understanding how healthcare investment affects health outcomes and for identifying potential areas for policy improvement. Special attention is given to the case studies of countries like Mexico and South Korea, which have undergone significant health reforms, and Japan, known for its large population and aging demographics. Through this multifaceted approach, the research aims to offer valuable insights into the dynamics of health economics, shedding light on the effectiveness of healthcare spending and the factors influencing health outcomes in diverse settings.

Analysis by Mitch

Analysis by Hongmei

In this section, our research concentrates on examining the correlation between health expenditure as a percentage of GDP and overall life expectancy at birth to understand if higher healthcare investment translates into longer life spans. On the other hand, a specific focus also will be placed on exploring a comparative analysis of a select group of representative OECD countries, focusing on how their health expenditure influences child mortality rates under the age of 5, this comparative study aims to uncover regional differences and insights into how distinct health system structures and spending levels impact crucial health outcomes, specifically in child health.

  1. The relationship between health expenditure with life expectation in OECD
# Plotting the relationship between health expenditure and life expectation for each year
ggplot(df, aes(x = HealthExp_percent_GDP, y = LifeExp_Total)) +
  geom_point() +
  geom_smooth(method = "lm", se = FALSE, color = "blue") + # Adds a linear regression line
  labs(title = "Health Expenditure vs Life Expectation in OECD Countries",
       x = "Health Expenditure as % of GDP", 
       y = "Life Expectation at Birth") +
  theme_minimal()
## `geom_smooth()` using formula = 'y ~ x'
Health Expenditure vs Life Expectation at Birth in OECD Countries

Figure 1: Health Expenditure vs Life Expectation at Birth in OECD Countries

As show in Figure 1, it illustrates a discernible positive relationship between health expenditure as a percentage of GDP and life expectancy at birth in OECD countries. This trend implies a potential association between greater health care investment and improved health outcomes, as evidenced by increased life expectancy.

  1. The relationship between health expenditure with mortality rate under 5 in representative countries
representative_countries <- c("USA", "CAN", "GBR", "DEU", "SWE",
                              "NZL", "MEX", "JPN", "KOR", "AUS")

# Filter the dataset
filtered_data <- df %>%
                 filter(Country_Code %in% representative_countries)
# Plot the relationship between health expenditure and mortality rate in representative countries
p <- ggplot(filtered_data, aes(x = HealthExp_percent_GDP, y = Mortality_U5_Total, text = Country_Name)) +
     geom_line(aes(color = Country_Name)) +
     labs(title = "Health Expenditure vs Mortality Rate in representative countries of OECD",
          x = "Health Expenditure",
          y = "Mortality Rate Under 5") +
     theme_minimal()
interactive_plot <- ggplotly(p, tooltip = c("text", "x", "y"))
interactive_plot

Figure 2: Health Expenditure vs Mortality Rate in representative countries of OECD

In the Figure 2, ten representative OECD countries were carefully selected to encompass a variety of healthcare systems, including universal healthcare, insurance-based, and mixed systems. The selection also includes countries that have undergone significant health reforms, such as Mexico and South Korea, and those with notable demographic characteristics, like Japan’s large population and aging society. This figure illustrates the relationship between health expenditure and infant mortality rates in these countries. A general trend is observed where higher health expenditure correlates with lower infant mortality rates, indicating a significant negative correlation and highlighting the impact of financial investment on health outcomes. Notably, the USA stands out with its higher level of health expenditure compared to other countries. However, Mexico deviates from this general trend, exhibiting a fluctuating relationship and a higher infant mortality rate than might be expected given its health expenditure level. This anomaly suggests that factors other than expenditure, such as efficiency of healthcare delivery or socio-economic conditions, may also play a critical role in determining health outcomes.

  1. Summary statistics of health expenditure and health outcome indicators in the selected countries
# Calculate summary statistics
summary_stats <- filtered_data %>%
  group_by(Country_Name) %>%
  summarise(across(c(HealthExp_percent_GDP, Mortality_U5_Total, LifeExp_Total),
                   list(mean = ~ mean(., na.rm = TRUE), var = ~ var(., na.rm = TRUE))))
# Make column name shorter and meaningful
colnames(summary_stats) <- c("Country", "Mean_HealthExp", "Var_HealthExp", 
                             "Mean_MortU5", "Var_MortU5", "Mean_LifeExp", "Var_LifeExp")
# Display the table
kable(summary_stats, caption = "Summary Statistics of Health Expenditure and Health Indicators in Selected Countries", format = "html") %>%
  kable_styling(full_width = TRUE)
Table 1: Summary Statistics of Health Expenditure and Health Indicators in Selected Countries
Country Mean_HealthExp Var_HealthExp Mean_MortU5 Var_MortU5 Mean_LifeExp Var_LifeExp =======

Analysis by Mitch

In this analysis we aim to explore the relationship between Gross Net Income (GNI) per Capita and key health indicators, specifically focusing on infant mortality and life expectancy. The two research questions are as follows

  1. Is there a relationship between GNI Per Capita and the infant mortality rate among children aged less than 5 years in OECD Countries.

  2. Is there a relationship between GNI Per Capita and life expectancy at birth of countries in the OECD

In the first figure 1, a scatterplot shows the relationship between Mortality Rates among children under 5 and GNI Per Capita for OECD countries spanning the years 2000 to 2022. The plot illustrates a downward trend, indicating that as GNI Per Capita rises, there is a tendency for infant mortality to decline.

df %>%
  ggplot(aes(x = GNIPerCapita, y = Mortality_U5_Total)) + 
  geom_point() +
  geom_smooth( se = FALSE) +
  labs(title="Scatter Plot of Mortality Rate Under 5 years and GNI Per Capita",
       subtitle="OECD Countries from 2000 to 2022",
       y="Mortality Rate Under 5 years",
       x="GNI Per Capita") 
Scatter Plot of Mortality Rate Under 5 years and GNI Per Capita

Figure 1: Scatter Plot of Mortality Rate Under 5 years and GNI Per Capita

In the second figure 2, a scatterplot shows the relationship between Life Expectancy at birth and GNI Per Capita for OECD countries spanning the years 2000 to 2022. The plot illustrates an upward trend, indicating that as GNI Per Capita rises, Life Expectancy increases.

df %>%
  ggplot(aes(x = GNIPerCapita, y = LifeExp_Total)) + 
  geom_point() +
  geom_smooth( se = FALSE) +
  labs(title="Scatter Plot of Life Expectancy and GNI Per Capita",
       subtitle="OECD Countries from 2000 to 2022",
       y="Life Expectancy at birth",
       x="GNI Per Capita") 
## `geom_smooth()` using method = 'loess' and formula = 'y ~ x'
Scatter Plot of Life Expectancy and GNI Per Capita

Figure 2: Scatter Plot of Life Expectancy and GNI Per Capita

To measure the strength of these associations, correlation coefficients were calculated for GNI Per Capita with Mortality Rates and Life Expectancy. Referring to Table 1, the results show a moderately negative correlation of -0.526 between GNI and Mortality, indicating an inverse relationship. Conversely, a positive correlation of 0.706 is observed between GNI and Life Expectancy, showing a strong positive relationship.

df %>%
  summarize(Mortality_U5_correlation = round(cor(GNIPerCapita, Mortality_U5_Total, use = "complete.obs"),3),
            LifeExp_correlation = round(cor(GNIPerCapita, LifeExp_Total, use = "complete.obs"),3)
            ) %>% kable(caption="GNI Per Capita Correlation to Mortality and Life Expectancy" ) %>% kable_styling(full_width = FALSE,position='left')
<<<<<<< HEAD
Table 1: GNI Per Capita Correlation to Mortality and Life Expectancy
Mortality_U5_correlation LifeExp_correlation >>>>>>> mitchell_wake
Australia 8.835345 1.0433705 4.828571 0.8391429 81.52056 1.2516815
Canada 10.077522 1.2059462 5.719048 0.1476190 80.95753 0.9415795
Germany 10.811329 0.5179457 4.342857 0.2835714 79.86249 1.2120146
Japan 9.186331 2.4167287 3.280952 0.3966190 82.89201 1.0666114
Korea, Rep.  5.841171 1.7191164 4.614286 2.0182857 80.00546 5.5113420
Mexico 5.585032 0.1675555 19.800000 19.3180000 74.07862 0.8985976
New Zealand 8.863087 0.6149196 6.095238 0.5914762 80.64070 1.3572151
Sweden 9.427667 2.0443653 3.219048 0.2436190 81.36376 1.0511929
United Kingdom 9.208468 1.2574710 5.266667 0.6413333 79.97224 1.5290854
United States 15.575834 2.0455827 7.361905 0.4604762 78.00999 0.5841826 ======= -0.526 0.706 >>>>>>> mitchell_wake
<<<<<<< HEAD

Table 1 provides a summary of the mean and variance in health expenditure alongside key health indicators, presenting a thorough quantitative analysis. The USA stands out with the highest health expenditure, yet it also shows a relatively higher variance in this spending, as well as in mortality rates. In contrast, Canada displays high average health expenditure, but with much lower variance, demonstrating consistency in its healthcare investments. On the other hand, countries like Mexico and Korea present notable variances in their health expenditure, suggesting complex underlying dynamics that merit deeper investigation. Intriguingly, Japan achieves a higher life expectancy and lower mortality rate with moderate health expenditure, underscoring the potential efficiency of its insurance-based health system.

  1. Correlation between health expenditure with health outcome indicators
# Correlation between Health Expenditure, Mortality under 5 and Life Expectancy at birth
correlation_stats <- filtered_data %>%
    group_by(Country_Name) %>%
    summarise(
      Cor_Heal_Mort = cor(HealthExp_percent_GDP, Mortality_U5_Total, use = "complete.obs"),
      Cor_Heal_Life = cor(HealthExp_percent_GDP, LifeExp_Total, use = "complete.obs")
      )
kable(correlation_stats, caption = "Correlation between Health Expenditure, Mortality under 5 and Life Expectancy", format = "html") %>%
  kable_styling(full_width = TRUE)
Table 2: Correlation between Health Expenditure, Mortality under 5 and Life Expectancy =======

Our second table (ref?)(tab:table2) examines the 10 countries in the OECD with the lowest Average GNI Per Capita from 2000 to 2020. It also includes the Rank of Life Expectancy and Mortality among the 37 countries. Notably, the analysis reveals that the 5 countries with the lowest Average GNI per Capita exhibit the lowest (unordered) ranks for Mortality and also demonstrate lower ranks for Life Expectancy. These findings suggest an association between lower GNI per Capita and weaker trends in Life Expectancy and Infant Mortality.

df %>% group_by(Country_Name) %>%
  summarise("Avg GNI Per Capita" = round(mean(GNIPerCapita),2),
            "Avg Life Expectancy" = round(mean(LifeExp_Total),2),
            "Avg Mortality U5" = round(mean(Mortality_U5_Total),2)) %>%
  arrange(`Avg GNI Per Capita`) %>%
  mutate("Rank Life Expectancy" = rank(-`Avg Life Expectancy`),
         "Rank Mortality U5" = rank(`Avg Mortality U5`)) %>%
  arrange(`Avg GNI Per Capita`) %>% head(10) %>% kable(caption="Countries with 10 Lowest Average GNI Per Capita") %>% kable_styling(full_width = FALSE, position = "left")
Table 2: Countries with 10 Lowest Average GNI Per Capita >>>>>>> mitchell_wake
Country_Name <<<<<<< HEAD Cor_Heal_Mort Cor_Heal_Life ======= Avg GNI Per Capita Avg Life Expectancy Avg Mortality U5 Rank Life Expectancy Rank Mortality U5 >>>>>>> mitchell_wake
<<<<<<< HEAD Australia -0.9272202 0.8888673 ======= Colombia 5101.90 74.51 18.66 33 35 >>>>>>> mitchell_wake
<<<<<<< HEAD Canada -0.9059984 0.8609486 ======= Costa Rica 7634.76 78.75 10.33 25 34 >>>>>>> mitchell_wake
<<<<<<< HEAD Germany -0.8533175 0.8124925
Japan -0.9345406 0.9074473
Korea, Rep.  -0.9221641 0.9741415 ======= Turkiye 8786.67 74.94 20.17 31 37 >>>>>>> mitchell_wake
Mexico <<<<<<< HEAD -0.4719754 -0.1723541 ======= 8903.81 74.08 19.80 35 36 >>>>>>> mitchell_wake
<<<<<<< HEAD New Zealand -0.7808487 0.8992428 ======= Chile 10355.71 78.71 8.63 26 33 >>>>>>> mitchell_wake
<<<<<<< HEAD Sweden -0.8681373 0.9005585 ======= Poland 10706.19 76.09 6.30 29 27 >>>>>>> mitchell_wake
<<<<<<< HEAD United Kingdom -0.8626432 0.8163209 ======= Latvia 11587.62 72.96 8.07 37 32 >>>>>>> mitchell_wake
<<<<<<< HEAD United States -0.9287438 0.6117293 ======= Hungary 11609.52 74.20 6.40 34 28
Lithuania 11727.14 73.24 6.75 36 29
Estonia 14206.19 74.88 5.34 32 24 >>>>>>> mitchell_wake
<<<<<<< HEAD


Table 2 reveals a general trend where health expenditure in most countries has a strong negative correlation with the mortality rate under 5 years and a positive correlation with life expectancy. However, there are notable exceptions. The United States, for example, despite its high health expenditure, shows a relatively lower positive correlation (0.6117293) with life expectancy. This suggests that increased spending does not correspond with a proportionate increase in life expectancy, possibly reflecting inefficiencies or other influencing factors. Mexico presents a distinct case, displaying a much weaker negative correlation with life expectancy (-0.1723541) and a less pronounced relationship between health expenditure and the reduction of mortality under 5 years. These anomalies in the Mexican context point towards potential systemic issues in healthcare delivery or socio-economic factors impacting health outcomes.

Conclusion

Our comprehensive analysis of the relationship between economic indicators and health outcomes in OECD countries has yielded significant insights. The study reveals a clear correlation between GNI per Capita and key health indicators such as infant mortality and life expectancy. Specifically, a higher GNI per Capita tends to be associated with lower infant mortality rates and increased life expectancy. This correlation underscores the importance of economic prosperity in enhancing overall health outcomes. However, the study also highlights the complexity of this relationship, as different countries exhibit varied trends depending on their healthcare systems and economic structures.

Furthermore, the examination of health expenditure as a percentage of GDP reveals a generally negative correlation with infant mortality rates and a positive correlation with life expectancy. This finding suggests that higher healthcare investment is beneficial, but the impact is not uniform across all OECD countries. The cases of the USA and Mexico are particularly illuminating. Despite high health expenditure, the USA shows a less pronounced increase in life expectancy, while Mexico, with its unique challenges, demonstrates that high spending does not always translate into better health outcomes. These variations point to the necessity of considering factors beyond financial investment, such as efficiency of healthcare delivery and socio-economic conditions.

In conclusion, this study provides critical evidence of the links between economic health indicators and health outcomes. While increased economic wealth and healthcare spending generally correlate with better health metrics, the relationship is nuanced and influenced by a multitude of factors. These findings emphasize the need for tailored health policies and investments that consider the specific contexts and challenges of each country to optimize health outcomes.

References

Phebe A Owusu, Samuel A Sarkodie(2021).Relationship between mortality and health care expenditure:Sustainable assessment of healthcare system. https://doi.org/10.1371/journal.pone.0247413.

=======

Analysis by Hongmei

Conclusion

References

>>>>>>> mitchell_wake